home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960715-19961006 / 000277_news@columbia.edu _Wed Aug 28 19:57:22 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id TAA06362 for <kermit.misc@watsun.cc.columbia.edu>; Wed, 28 Aug 1996 19:57:22 -0400 (EDT)
  3. Received: (from news@localhost) by newsmaster.cc.columbia.edu (8.7.5/8.7.3) id TAA23959 for kermit.misc@watsun; Wed, 28 Aug 1996 19:57:21 -0400 (EDT)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: HELP: Kermit under bsdi leaving processes.
  8. Date: 28 Aug 1996 23:57:01 GMT
  9. Organization: Columbia University
  10. Lines: 24
  11. Message-ID: <502mcd$9e@apakabar.cc.columbia.edu>
  12. References: <32248BBD.1CFBAE39@primetime.com>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <32248BBD.1CFBAE39@primetime.com>,
  16. Kurt Seel  <kseel@primetime.com> wrote:
  17. : I am using kermit (5A 190) under bsdi. I am seeing some kermit
  18. : processes left over after a user logs out. What conditions might cause
  19. : this? I am launching kermit from TCL/expect, so they are being attached
  20. : to pty's. This also has the effect of slowly eating up all my pty 
  21. : devices.
  22. :  BTW I also notice that for each kermit session, there are two kermit
  23. : processes, I was wondering why?
  24. :
  25. UNIX C-Kermit, when it's in CONNECT mode, runs in two forks.  The second,
  26. lower is created whenever you enter CONNECT mode, and is terminated when you
  27. return from CONNECT mode.  If C-Kermit is in CONNECT mode and somehow the
  28. upper process disappears, the lower fork might keep going for some time.
  29. This does not normally happen.  It should only happen if some external force
  30. terminates the upper fork explicitly.
  31.  
  32. You might want to look at the 6.0 Beta version, since there have been
  33. some improvements in this area:
  34.  
  35.   http://www.columbia.edu/kermit/whatsnew.html
  36.  
  37. - Frank